over-strictness - ترجمة إلى الهولندية
Diclib.com
قاموس ChatGPT
أدخل كلمة أو عبارة بأي لغة 👆
اللغة:     

ترجمة وتحليل الكلمات عن طريق الذكاء الاصطناعي ChatGPT

في هذه الصفحة يمكنك الحصول على تحليل مفصل لكلمة أو عبارة باستخدام أفضل تقنيات الذكاء الاصطناعي المتوفرة اليوم:

  • كيف يتم استخدام الكلمة في اللغة
  • تردد الكلمة
  • ما إذا كانت الكلمة تستخدم في كثير من الأحيان في اللغة المنطوقة أو المكتوبة
  • خيارات الترجمة إلى الروسية أو الإسبانية، على التوالي
  • أمثلة على استخدام الكلمة (عدة عبارات مع الترجمة)
  • أصل الكلمة

over-strictness - ترجمة إلى الهولندية

Strictness Analysis

over-strictness      
het te nauwkeurig zijn, het pedant zijn
over and over         
WIKIMEDIA DISAMBIGUATION PAGE
Over And Over; Over and Over (single); Over And Over (album); Over and Over (song); Over and Over (album); Over & over; Over and Over (disambiguation)
opnieuw en opnieuw, keer op keer
turn over         
LIVE ALBUM BY SHOW-YA
Turn over; Turnover (sports); Turn-over; Turnover (disambiguation); Turning over; Turned over; Turns over; Turning over (disambiguation)
omdraaien, omslaan (blad), doorbladeren; kantelen; overschakelen (op); omgooien; overdragen, uitleveren, overleveren, overdoen; een omzet hebben van

تعريف

game over
informal
said when a situation is regarded as hopeless.

ويكيبيديا

Strictness analysis

In computer science, strictness analysis refers to any algorithm used to prove that a function in a non-strict functional programming language is strict in one or more of its arguments. This information is useful to compilers because strict functions can be compiled more efficiently. Thus, if a function is proven to be strict (using strictness analysis) at compile time, it can be compiled to use a more efficient calling convention without changing the meaning of the enclosing program.

Note that a function f is said to diverge if it returns { } {\displaystyle \{\bot \}} : operationally, that would mean that f either causes abnormal termination of the enclosing program (e.g., failure with an error message) or that it loops infinitely. The notion of "divergence" is significant because a strict function is one that always diverges when given an argument that diverges, whereas a lazy (or non-strict) function is one that may or may not diverge when given such an argument. Strictness analysis attempts to determine the "divergence properties" of functions, which thus identifies some functions that are strict.